home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / libsrc / _chkabort.c next >
Encoding:
C/C++ Source or Header  |  1995-08-28  |  127 b   |  9 lines

  1. #include <libraries/dos.h>
  2.  
  3. void _chkabort(void)
  4. {
  5.     if(SetSignal(0L,SIGBREAKF_CTRL_C)&SIGBREAKF_CTRL_C)
  6.         exit(0);
  7. }
  8.  
  9.